960653926a6a5c057ef430a8c36a0f49e829670a,app/src/main/java/fm/jiecao/jiecaovideoplayer/UIImageLoaderActivity.java,UIImageLoaderActivity,onCreate,#Bundle#,31

Before Change


        videoController2 = (JCVideoPlayerStandard) findViewById(R.id.videocontroller2);
        videoController2.setUp("http://video.jiecao.fm/8/17/%E6%8A%AB%E8%90%A8.mp4", JCVideoPlayer.SCREEN_LAYOUT_LIST,
                "嫂�别晃");
        Glide.with(this)
                .load("http://img4.jiecaojingxuan.com/2016/8/17/f2dbd12e-b1cb-4daf-aff1-8c6be2f64d1a.jpg")
                .into(videoController2.thumbImageView);

        videoController3 = (JCVideoPlayerStandard) findViewById(R.id.videocontroller3);
        videoController3.setUp("http://video.jiecao.fm/8/17/%E6%8A%AB%E8%90%A8.mp4", JCVideoPlayer.SCREEN_LAYOUT_LIST,

After Change


        videoController2.setUp("http://video.jiecao.fm/8/17/%E6%8A%AB%E8%90%A8.mp4", JCVideoPlayer.SCREEN_LAYOUT_LIST,
                "嫂�打电�");
        Uri uri = Uri.parse("http://img4.jiecaojingxuan.com/2016/8/17/f2dbd12e-b1cb-4daf-aff1-8c6be2f64d1a.jpg");
        videoController2.thumbImageView.setImageURI(uri);

    }